home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000135_news@columbia.edu_Wed Oct 18 01:51:25 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21268
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 18 Oct 1995 13:45:47 -0400
  3. Received: by apakabar.cc.columbia.edu id AA02347
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 18 Oct 1995 13:45:45 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Lanwp - and using ip names (as opposed to numbers)
  9. Message-Id: <1995Oct18.075125.64084@cc.usu.edu>
  10. Date: 18 Oct 95 07:51:25 MDT
  11. References: <1995Oct18.092359.1@hujicc>
  12. Distribution: world
  13. Organization: Utah State University
  14. Lines: 31
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <1995Oct18.092359.1@hujicc>, naomir1@vms.huji.ac.il writes:
  18. > Hello Kermit users,
  19. > We use kermit with lan workplace, and therefore connect with
  20. > the command
  21. > set po tel xxx.xxx.xxx.xxx
  22. > Where the x's are the ip number.  Our  network adminstrator has requested
  23. > that we rely on the nameserver to supply ip addresses, however I have not
  24. > found a way to use the set po tel command and supply the name as opposed
  25. > to the number.  (For those not needing lanwp, there is no problem
  26. > set po tcp allows for ip name addresses)
  27. > Any suggestions.
  28. > We have just started switching people from 3.13 to 3.14 and answer
  29. > to both versions would be appreciated.
  30. ---------------
  31.     I think we covered this in the MSK release documenation. The
  32. answer is yes. Novell's Domain Name Server procedures live separately
  33. from their TCP/IP stack, alas. To engage DNS lookups start a connection
  34. with TELAPI loaded and transitory helper program TSU available.
  35.     Then use the Kermit macro "telapi" (could have chosen another
  36. name) below to start a connection by IP name:
  37.  
  38. define telapi run tsu -o \%1 -p \%2 k1,run tsu -a k1 1,set port nov
  39.  
  40. Run it as   telapi that.host.domain optional-port-number
  41. such as        telapi vms.huji.ac.il
  42.     Other sessions can be started to other fake-serial ports (k1, 1
  43. idents above), if you read the docs on Novell TSU's command line interface.
  44.     Joe D.